General form (I)
================
{XYYYYYYY + ZZZZZZZZ...}
Control byte (8 bit/1 byte) + Data (8 bits/1 byte or more)

Details
=======
{X}
Control bit (1 bit)

{YYYYYYY}
Number of repetitions (7 bits)

{ZZZZZZZZ...}
Data (8 bits/1 byte for compressed data only)

{X}:
0 - For non compressed data
1 - The following data is compressed	 	

{YYYYYYY}
The number of bytes of data to be copied (127/$7F bytes max)

The end of the compressed data block is reached if the control byte {XYYYYYYY} = 00
-----------------------------------------------------------------------------------
Example
=======
Compressed data:
{03E00100 823A 862F 0172 00}

Decompressed data:
{E0 01 00 3A 3A 2F 2F 2F 2F 2F 2F 72}

__________________________________________
General form (II) 
=================
{XYYYYYYY + ZZZZZZZZ KKKKKKKK...}
Control byte (8 bit/1 byte) + Data (16 bits/2 bytes or more)

Details
=======
{X}
Control bit (1 bit)

{YYYYYYY}
Number of repetitions (7 bits)

{ZZZZZZZZ KKKKKKKK...}
Data (16 bits/2 bytes for compressed data only)

{X}:
0 - For non compressed data
1 - The following data is compressed	 	

{YYYYYYY}
The number of bytes of data to be copied (127/$7F bytes max)

The end of the compressed data block is reached if the control byte {XYYYYYYY} = 00
-----------------------------------------------------------------------------------
Example
=======
Compressed data:
{02E0014611 823A25 832F30 017215 00}

Decompressed data:
{E0 01 46 11 3A 25 3A 25 2F 30 2F 30 2F 30 72 15}